arm: change tbu/l type to unsigned int
authorPeng Fan <[email protected]>
Tue, 9 May 2017 02:32:02 +0000 (10:32 +0800)
committerTom Rini <[email protected]>
Fri, 12 May 2017 12:37:34 +0000 (08:37 -0400)
Change tbu/l type to unsigned int.
>From the timer file for arm,
"(((unsigned long long)gd->arch.tbu) << 32) | gd->arch.tbl;" is used,
This piece code is based on tbu/tbl is 32bits, so change the type to
unsigned int.

Signed-off-by: Peng Fan <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Tom Rini <[email protected]>
arch/arm/include/asm/global_data.h

index 1aab6295d6066c2037fb1865ff7ebd36cfde57e5..3cc0e5fa34a5a762f29e01abf6e04db4dab685e0 100644 (file)
@@ -32,8 +32,8 @@ struct arch_global_data {
 #endif
        /* "static data" needed by most of timer.c on ARM platforms */
        unsigned long timer_rate_hz;
-       unsigned long tbu;
-       unsigned long tbl;
+       unsigned int tbu;
+       unsigned int tbl;
        unsigned long lastinc;
        unsigned long long timer_reset_value;
 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))